home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Headers / eoadaptors / Oracle7 / OracleLoginPanel.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-10  |  679 b   |  30 lines

  1. //  OracleLoginPanel.h
  2. //  Copyright 1994, NeXT Computer, Inc.
  3.  
  4. #ifndef NeXT_PDO
  5.  
  6. #import <eoaccess/eoaccess.h>
  7. #import <appkit/appkit.h>
  8.  
  9. @interface OracleLoginPanel:Panel
  10. {
  11.     TextField *serverIdField;
  12.     TextField *hostMachineField;
  13.     TextField *userNameField;
  14.     TextField *passwordField;
  15.     TextField *versionField;
  16.     NSMutableDictionary *extraInfo;
  17. }
  18.  
  19. - cancel:sender;
  20. - login:sender;
  21.     // These are the targets of the Login and Cancel buttons on the panel.
  22.     
  23. - (void)setConnectionDictionary:(NSDictionary *)connectionInfo;
  24. - (NSDictionary *)connectionDictionary;
  25.     // These set and return the values of the text fields on the login panel.
  26.     
  27. @end
  28.  
  29. #endif
  30.